博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论列表显示及排序,个人中心显示
阅读量:4969 次
发布时间:2019-06-12

本文共 2168 字,大约阅读时间需要 7 分钟。

 

  1. 显示所有评论
    {% for foo in ques.comments %}
  2. 所有评论排序
    uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))
    question=db.relationship('Question',backref=db.backref('comments',order_by=creatTime.desc))
  3. 显示评论条数
    {
    { ques.comments|length }}

    [{

    { question.comments|length }}]

  4. 完成个人中心

1.个人中心的页面布局(html文件及相应的样式文件)

2.定义视图函数def usercenter(user_id):

@app.route('/self/
')def self(user_id): user=User.query.filter(User.id==user_id).first() context={ 'user':user } return render_template('self.html',**context)

3.向前端页面传递参数

4.页面显示相应数据

发布的全部问答

发布的全部评论

个人信息

5.各个页面链接到个人中心

{% extends'base.html' %}{% block title %}    Self{% endblock %}{% block head %}    
{% endblock %}{% block main %}

{
{ user.username }}

全部问答

{% for foo in user.question %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.title }}

{

{ foo.detail }}

{% endfor %}

全部评论

{% for foo in user.comments %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.detail }}

{% endfor %}

个人信息

  • 用户名:{
    { user.username }}
  • 编号:{
    { user.id }}
  • 文章篇数:{
    { user.question|length }}
  • {% endblock %}

     

     

    转载于:https://www.cnblogs.com/lkm123/p/8029742.html

    你可能感兴趣的文章
    转载:深入浅出Zookeeper
    查看>>
    GMA Round 1 新程序
    查看>>
    node anyproxy ssi简易支持
    查看>>
    编译预处理指令:文件包含指令、宏定义指令、条件编译指令
    查看>>
    PHP函数 ------ ctype_alnum
    查看>>
    网站安全
    查看>>
    WS-Addressing 初探
    查看>>
    .NET+模块编排+数据库操作类的封装+分层架构+实体类+Ajax.net+Athem.NET+javascript+Activex组件+用户权限等...
    查看>>
    Markdown不常见功能
    查看>>
    (二)NUnit单元测试心得
    查看>>
    hdu_2604Queuing(快速幂矩阵)
    查看>>
    frame.bounds和center
    查看>>
    HDU 1102 Constructing Roads
    查看>>
    android StaticLayout参数解释
    查看>>
    多线程之ThreadLocal类
    查看>>
    Qt-读取文本导出word
    查看>>
    OC语言description方法和sel
    查看>>
    C#中得到程序当前工作目录和执行目录的五种方法
    查看>>
    扫描线与悬线
    查看>>
    用队列和链表的方式解决约瑟夫问题
    查看>>